Conversation
danielroe
approved these changes
Oct 24, 2025
Contributor
|
Hi, for the release workflow this should work steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
fetch-depth: 0
- run: corepack enable
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: latest
cache: pnpm
+ registry-url: https://registry.npmjs.org
+
+ - run: pnpm config set registry https://registry.npmjs.org
- name: 📦 Install dependencies
run: pnpm install
- name: 🛠 Prepare build environment
run: pnpm dev:prepare
- name: 📦 Release
+ run: pnpm publish --access public --no-git-checks
- name: 🏷️ Create tag
run: |
TAG_NAME=${{ github.event.pull_request.head.ref }}
git tag $TAG_NAME
git push origin $TAG_NAME |
Member
|
what I can't figure out is why it isn't working in this repo but working fine in nuxt/cli + nuxt/nuxt, etc. |
Contributor
|
From what I see, nuxt/nuxt uses There's a weird behaviour when using |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
👉 Changelog
compare changes
🏡 Chore
🤖 CI
pnpm publishand remove registry url (b46b6b16d)❤️ Contributors